home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-14 | 337 b | 23 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved.
-
- #ifndef __SHAPESTRING_H
- #define __SHAPESTRING_H
-
- #include "CLShape.h"
-
- class TStyle;
-
- class TStringShape:
- public TShape
- {
- protected:
- int mX, mY;
- char *mString;
- TStyle *mStyle;
- public:
- TStringShape( TStyle*, int, int, char* );
- virtual void RenderOn( TDrawSlate* );
- };
-
- #endif